home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel 68k / lib_test / test_integer_ref2.e < prev    next >
Encoding:
Text File  |  1996-06-13  |  411 b   |  27 lines  |  [TEXT/EDIT]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class TEST_INTEGER_REF2
  5. --
  6. -- From a bug report of Thierry DE CARVALHO
  7. --
  8.    
  9. creation make
  10.    
  11. feature
  12.    
  13.    make is
  14.       local
  15.      a : ANY;
  16.      i : INTEGER_REF;
  17.       do
  18.      !INTEGER_REF!a.make(1);
  19.      i ?= a;
  20.      if i.item /= 1 then
  21.         check
  22.            false
  23.         end;
  24.      end;
  25.       end;
  26. end
  27.